home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_022 / lemacs / epath.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  600b  |  46 lines

  1. /*    PATH:    This file contains certain info needed to locate the
  2.         MicroEMACS files on a system dependant basis.
  3.  
  4.                                     */
  5.  
  6. /*    possible names and paths of help files under different OSs    */
  7.  
  8. char *pathname[] = {
  9.  
  10. #ifdef    AMIGA
  11.     ".emacsrc",
  12.     "emacs.hlp",
  13.     "",
  14.     ":c/",
  15.     ":t/"
  16. #endif
  17.  
  18. #ifdef    MSDOS
  19.     "emacs.rc",
  20.     "emacs.hlp",
  21.     "\\sys\\public\\",
  22.     "\\usr\\bin\\",
  23.     "\\bin\\",
  24.     "\\",
  25.     ""
  26. #endif
  27.  
  28. #ifdef    V7
  29.     ".emacsrc",
  30.     "emacs.hlp",
  31.     "/usr/local/",
  32.     "/usr/lib/",
  33.     ""
  34. #endif
  35.  
  36. #ifdef    VMS
  37.     "emacs.rc",
  38.     "emacs.hlp",
  39.     "",
  40.     "sys$sysdevice:[vmstools]"
  41. #endif
  42.  
  43. };
  44.  
  45. #define    NPNAMES    (sizeof(pathname)/sizeof(char *))
  46.